projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2730107
)
Put obsolete directory last.
author
Chong Yidong
<cyd@stupidchicken.com>
Thu, 30 Oct 2008 18:58:46 +0000
(18:58 +0000)
committer
Chong Yidong
<cyd@stupidchicken.com>
Thu, 30 Oct 2008 18:58:46 +0000
(18:58 +0000)
update-subdirs
patch
|
blob
|
history
diff --git
a/update-subdirs
b/update-subdirs
index b4df2cea045896ea24645ab630f25bf7688bd70a..336b6735abf8e30a64c985be744d0fb68f6f032d 100755
(executable)
--- a/
update-subdirs
+++ b/
update-subdirs
@@
-27,9
+27,13
@@
for file in *; do
;;
*)
if [ -d $file ]; then
- subdirs="\"$file\" $subdirs"
+ if [ "$file" = "obsolete" ]; then
+ subdirs="$subdirs \"$file\""
+ else
+ subdirs="\"$file\" $subdirs"
+ fi
fi
- ;;
+
;;
esac
done